home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / amiexpress / source / ae / code / ax3.00 / awaitdisp.c < prev    next >
Encoding:
C/C++ Source or Header  |  1980-01-03  |  1.5 KB  |  50 lines

  1. #include "bbs.h"
  2.  
  3. extern char ReservedName[];
  4.  
  5. #ifdef RTS
  6. void cdummy1(void)
  7. {
  8. }
  9. #endif
  10.  
  11.  
  12.  
  13.  
  14. void DisplayAwaitMsg(void)
  15. {
  16.  
  17.  IO_Flags[IOFLAG_SCR_OUT]=1;
  18.  AnsiColor=1;
  19.  ConPutStr("\017\014\n");
  20.  
  21.  sprintf(GSTR3,"\r\n                © 1992-1995 %s by LightSpeed Technologies Inc.\x30\x20\x70",PROG_NAME);
  22.  ConPutStr(GSTR3);
  23.  sprintf(GSTR3,"\r\n                        Programming by:  %s",PROG_AUTHOR1);
  24.  ConPutStr(GSTR3);
  25.  ConPutStr("\r\n  \r\n");
  26.  
  27.  sprintf(GSTR1,"%sAWAITSCREEN",Sopt->NodeScreen);
  28.  if(!ChecktoDisplay(GSTR1,GSTR2,0,0))
  29.  {
  30.  ConPutStr("             F1 }- Sysop Login            F2 }- Local Login\r\n");
  31.  
  32.  ConPutStr("             F3 }- Instant Remote Logon   F4 }- Reserve for a user\r\n");
  33.  
  34.  
  35.  ConPutStr("             F5 }- ** RESERVED **         F6 }- Account Editing\r\n");
  36.  ConPutStr("             F7 }- Chat Toggle            F8 }- Reprogram modem\r\n");
  37.  ConPutStr("             F9 }- Exit BBS               F0 }- Exit BBS (off hook)\r\n\r\n");
  38.  
  39.  if(ReservedName[0]!='\0') {
  40.         sprintf(GSTR3,"              The BBS is reserved for %-30s  \r\n",ReservedName);
  41.         ConPutStr(GSTR3);
  42.     }
  43.  }
  44.  ConPutStr("9H");
  45.  ConPutStr(" p"); /* turn console cursor off */
  46.  
  47.  IO_Flags[IOFLAG_SCR_OUT]=0;
  48.  
  49. }
  50.